home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
dlconfig.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
1KB
|
33 lines
/* RCSVER $Id: dlconfig.sql,v 1.5 2000-03-22 16:48:21-06 randy Exp $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: dlconfig.sql
* Date: 12/28/1998
* memo: Randy Wood
* Description: Create the dlconfig table. This table contains the
* parameters necessary for generating the fb config
* files and downloading the changes to the fareboxes.
* This is only for the CHC side, i.e., from the CHC to the
* GRS.
* Changes:
************************************************************************* */
CREATE TABLE dlconfig
(
pupdates_dir VARCHAR2(80), /* Directory where program updates */
/* are kept (NOT the download dir */
config_dir VARCHAR2(80), /* Directory for config file */
/* generation */
probe_dir VARCHAR2(80), /* Directory where probed data files */
/* are retrieved from - there */
/* should be a subdirectory for */
/* each farebox */
dl_dir VARCHAR2(80), /* Directory where the files */
/* to be downloaded are moved - */
/* there should be one subdir */
/* for every farebox */
pcopy_dir VARCHAR2(80), /* Directory on CHC where probe files */
/* are copied and kept */
use_zip NUMBER(1) /* Download zip files (=1) or text files (=0) */
);